home *** CD-ROM | disk | FTP | other *** search
- /*
- VaListDef.h -- Common definitions
-
- Copyright Apple Computer,Inc. 1987-1990, 1994
- All rights reserved.
-
- va_list - defined by stdarg and stdio. NOT defined by stddef when explicitly
- included.
- */
-
- #ifndef __VALISTDEF__
- #define __VALISTDEF__
-
- typedef char *va_list;
-
- #endif /* __VALISTDEF__ */
-
-